Nullable.opAssign

Assigns value to the internally-held state. If the assignment succeeds, this becomes non-null.

  1. void opAssign(T value)
  2. void opAssign(N n)
    struct Nullable(T)
    @safe nothrow pure @nogc
    static if(!is(T == immutable(T)) && !is(T == const(T)))
    void
    opAssign
    (
    N : typeof(null)
    )
    (
    N n
    )

Meta